home *** CD-ROM | disk | FTP | other *** search
- /* ARexx script to Talk someone */
- /* For use with AmiComSys 1.12+ */
- /* Talk must be in the AMITCP:bin directory */
-
- ADDRESS AMICOMSYS;
- OPTIONS RESULTS;
-
- GET stem info. CLIENTLIST;
- /* "stem info." inserts the results to the structure 'info.'. */
- /* "var s" would have inserted all the results to one string in s. */
- /* "CLIENTLIST": We want to read the client list information. */
- s=info.selected;
- If Show('p','AMTALK')=0 Then Do
- ADDRESS COMMAND 'c:run >NIL: imp:test/arkiv/amtalk/amtalk'
- WaitForPort AMTALK
- End;
- ADDRESS COMMAND 'rx AMITCP:bin/talk '||info.usernames.s||'@'||info.hostnames.s;
- /* Start the talk arexx script for AmTalk */
-
- EXIT;
-